/* ============================================================
   KENOVA — Typography tokens
   Fraunces (display serif), Hanken Grotesk (body), Space Mono (labels)
   ============================================================ */
:root {
  /* --- Families --- */
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --font-mono: 'Space Mono', 'SFMono-Regular', ui-monospace, monospace;

  /* --- Weights --- */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* --- Display scale (Fraunces) — use for headings --- */
  --text-display-xl: 4.25rem;   /* 68px — hero */
  --text-display-lg: 3rem;      /* 48px */
  --text-display-md: 2.25rem;   /* 36px */
  --text-display-sm: 1.625rem;  /* 26px */
  --text-title:      1.25rem;   /* 20px — card titles */

  /* --- Body scale (Hanken Grotesk) --- */
  --text-lg: 1.25rem;     /* 20px — lede */
  --text-base: 1.0625rem; /* 17px — default body */
  --text-sm: 0.9375rem;   /* 15px */
  --text-xs: 0.8125rem;   /* 13px */

  /* --- Label scale (Space Mono) --- */
  --text-label: 0.75rem;     /* 12px — eyebrows, codes */
  --text-label-sm: 0.6875rem;/* 11px */

  /* --- Line heights --- */
  --leading-tight: 1.08;   /* display */
  --leading-snug: 1.25;
  --leading-normal: 1.55;  /* body */
  --leading-relaxed: 1.7;

  /* --- Letter spacing --- */
  --tracking-display: -0.02em;
  --tracking-tight: -0.01em;
  --tracking-normal: 0;
  --tracking-label: 0.18em;  /* spaced-out mono eyebrows */
  --tracking-label-sm: 0.08em;
}
