/* Cordish Group — Typography tokens
   Two families only. Montserrat for headings (semibold/bold; section titles
   uppercase with a short gold underline). Inter for body, tabular figures. */
:root {
  /* ── Families ───────────────────────────────── */
  --font-heading: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* ── Weights ────────────────────────────────── */
  --fw-regular:   400; /* @kind font */
  --fw-medium:    500; /* @kind font */
  --fw-semibold:  600; /* @kind font */
  --fw-bold:      700; /* @kind font */

  /* ── Type scale (display → caption) ─────────── */
  --fs-display:   46px;  /* hero / title-slide headline */
  --fs-h1:        34px;
  --fs-h2:        26px;  /* section title (uppercase) */
  --fs-h3:        20px;
  --fs-h4:        17px;
  --fs-body-lg:   17px;
  --fs-body:      15px;
  --fs-body-sm:   14px;
  --fs-caption:   12px;
  --fs-eyebrow:   13px;

  /* ── Line heights ───────────────────────────── */
  --lh-tight:     1.12; /* @kind font */
  --lh-snug:      1.35; /* @kind font */
  --lh-body:      1.55; /* @kind font */

  /* ── Letter spacing ─────────────────────────── */
  --ls-tight:     -0.01em;
  --ls-eyebrow:   0.12em;  /* uppercase eyebrows */
  --ls-caps:      0.04em;  /* uppercase section titles */

  /* ── Tabular figures (body numerics) ────────── */
  --fvn-tabular:  "tnum" 1, "lnum" 1; /* @kind font */
}
