/* ============================================================
   BLACKLIGHT — Typography tokens
   Four families, each with one job.
   Cinzel    · wordmark + display caps (inscriptional authority)
   Cormorant · titles + editorial headings
   EB Garamond · long-form body
   Jost      · UI, labels, eyebrows, fine print
   ============================================================ */
:root{
  /* ---- Families ---- */
  --font-display:'Cinzel', Georgia, 'Times New Roman', serif;
  --font-serif:'Cormorant Garamond', Georgia, serif;
  --font-body:'EB Garamond', Georgia, serif;
  --font-sans:'Jost', -apple-system, 'Segoe UI', sans-serif;

  /* ---- Type scale (rem · 16px base) ---- */
  --fs-display:3.5rem;   /* 56 — hero wordmark / display */
  --fs-h1:2.5rem;        /* 40 */
  --fs-h2:2rem;          /* 32 */
  --fs-h3:1.5rem;        /* 24 */
  --fs-h4:1.25rem;       /* 20 */
  --fs-body:1.0625rem;   /* 17 */
  --fs-small:0.875rem;   /* 14 */
  --fs-micro:0.75rem;    /* 12 — eyebrows, labels */

  /* ---- Line height ---- */
  --lh-tight:1.15;   /* @kind font */
  --lh-snug:1.4;     /* @kind font */
  --lh-body:1.7;     /* @kind font */

  /* ---- Letter-spacing ---- */
  --ls-label:0.22em;     /* uppercase Jost labels & eyebrows */
  --ls-wordmark:0.14em;  /* Cinzel wordmark */
  --ls-wide:0.3em;       /* extra-airy descriptors */
  --ls-tight:0.04em;     /* large serif display */

  /* ---- Weights ---- */
  --fw-display:600; /* @kind font */
  --fw-serif:500;   /* @kind font */
  --fw-body:400;    /* @kind font */
  --fw-label:400;   /* @kind font */
}
