/* ============================================================
   Delulu Solutions / Typography tokens

   Two voices:
     DISPLAY  (Space Grotesk) : headlines, eyebrows, big numbers
     TEXT     (Work Sans)     : body, captions, UI labels

   Sizes here are tuned for artifacts (slides, posters), so the
   scale runs large. Step down for dense UI as needed.
   ============================================================ */

:root {
  /* ---- Families ---- */
  --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body:    'Work Sans', system-ui, -apple-system, sans-serif;
  --font-ui:      'Work Sans', 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 (px) ---- */
  --fs-caption: 14px;  /* fine print, captions */
  --fs-label:   16px;  /* eyebrows, UI labels */
  --fs-sm:      18px;  /* small body */
  --fs-body:    22px;  /* body copy */
  --fs-lead:    28px;  /* lead paragraph */
  --fs-h3:      40px;  /* sub-heading */
  --fs-h2:      64px;  /* heading */
  --fs-h1:      92px;  /* display heading */
  --fs-hero:    132px; /* poster / cover hero */

  /* ---- Line heights ---- */
  --lh-tight:  1.02;  /* @kind font */
  --lh-snug:   1.15;  /* @kind font */
  --lh-normal: 1.5;   /* @kind font */

  /* ---- Letter spacing ---- */
  --ls-tight:  -0.02em;  /* @kind font */
  --ls-normal: 0;        /* @kind font */
  --ls-label:  0.16em;   /* @kind font */ /* eyebrows / overlines, ALL CAPS */
}
