/* =====================================================================
   Font stack — self-contained, no third-party requests.
   We use a polished system-font stack instead of fetching Google Fonts.
   This avoids leaking visitor IPs to googleapis.com (a GDPR consideration
   for UK/EU sites) and keeps the page fast and offline-capable.

   If you'd prefer the brand-specific Figtree font, download the .woff2
   files into /assets/fonts/ and add @font-face rules here. The site will
   pick them up automatically via the same family name.
   ===================================================================== */

:root {
  --font-sans: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI',
               'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

body, .input, .btn { font-family: var(--font-sans); }
