/* ============================================================
   DISCO GRINGO — TYPOGRAPHY TOKENS
   ============================================================ */
:root {
  /* ---- Families ---- */
  --font-display: "Bagel Fat One", "Sniglet", system-ui, sans-serif; /* hero bubble */
  --font-heading: "Sniglet", "Nunito", system-ui, sans-serif;        /* section heads */
  --font-body:    "Nunito", system-ui, -apple-system, sans-serif;    /* UI + prose */
  --font-mono:    "Space Mono", ui-monospace, "SFMono-Regular", monospace; /* tickets */

  /* ---- Weights ---- */
  --fw-regular:  400; /* @kind font */
  --fw-semibold: 600; /* @kind font */
  --fw-bold:     700; /* @kind font */
  --fw-heavy:    800; /* @kind font */

  /* ---- Type scale (1.250 major-third, 16px base) ---- */
  --text-xs:   0.75rem;   /* 12 — captions, ticket fine-print */
  --text-sm:   0.875rem;  /* 14 — labels, helper */
  --text-base: 1rem;      /* 16 — body */
  --text-md:   1.125rem;  /* 18 — lead body */
  --text-lg:   1.375rem;  /* 22 — card titles */
  --text-xl:   1.75rem;   /* 28 — section subhead */
  --text-2xl:  2.25rem;   /* 36 — h2 */
  --text-3xl:  3rem;      /* 48 — h1 */
  --text-4xl:  4rem;      /* 64 — display */
  --text-5xl:  5.5rem;    /* 88 — hero bubble */

  /* ---- Line heights ---- */
  --leading-tight:  1.05;  /* bubble display */
  --leading-snug:   1.2;   /* headings */
  --leading-normal: 1.5;   /* body */
  --leading-relaxed:1.65;  /* long prose */

  /* ---- Letter spacing ---- */
  --tracking-tight:  -0.01em;
  --tracking-normal: 0;
  --tracking-wide:   0.04em;
  --tracking-mono:   0.08em;  /* mono ticket labels, UPPERCASE */
}
