/* ==========================================================================
   digHy — Fonts & Type tokens
   Brand wordmark: Montserrat 900. UI/body: Inter.
   (Loaded from Google Fonts CDN — see Caveats in README for self-hosting.)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@400;700;900&display=swap');

:root {
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-brand: 'Montserrat', sans-serif;

  /* Type ramp — Tailwind defaults as used in product */
  --text-xs: 0.75rem;     /* 12 — labels, footnotes */
  --text-sm: 0.875rem;    /* 14 — body, buttons */
  --text-base: 1rem;      /* 16 — body lg */
  --text-lg: 1.125rem;    /* 18 — card titles */
  --text-xl: 1.25rem;     /* 20 */
  --text-2xl: 1.5rem;     /* 24 — section H2 mobile */
  --text-3xl: 1.875rem;   /* 30 — H1 mobile, H2 desktop */
  --text-4xl: 2.25rem;    /* 36 — H1 desktop */
  --text-hero: 5rem;      /* 80 — hero heading */
}
