/* ============================================================
   SNAPLYWEB — Typography tokens
   Headings: Gotham (700/800/900). Buttons: Gotham Medium (500).
   Body / UI: Inter. Script flair: Good Retro.
   ============================================================ */
:root {
  /* ---- Families ---- */
  --font-display: "Gotham", "Inter", system-ui, -apple-system, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-button:  "Gotham", "Inter", system-ui, sans-serif;
  --font-script:  "Good Retro", "Gotham", cursive;
  --font-mono:    ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;

  /* ---- Weights ---- */
  --fw-regular:  400; /* @kind font */
  --fw-medium:   500; /* @kind font */
  --fw-semibold: 600; /* @kind font */
  --fw-bold:     700; /* @kind font */
  --fw-black:    800; /* @kind font */
  --fw-ultra:    900; /* @kind font */

  /* ---- Fluid type scale (mobile-first, clamps up) ---- */
  --fs-display: clamp(3rem, 8vw, 6rem);          /* @kind font */
  --fs-h1:      clamp(2.25rem, 5.5vw, 4rem);     /* @kind font */
  --fs-h2:      clamp(1.75rem, 4vw, 2.75rem);    /* @kind font */
  --fs-h3:      clamp(1.375rem, 2.6vw, 2rem);    /* @kind font */
  --fs-h4:      clamp(1.125rem, 1.8vw, 1.5rem);  /* @kind font */
  --fs-lead:    clamp(1.125rem, 1.6vw, 1.375rem);/* @kind font */
  --fs-body:    1rem;        /* @kind font */
  --fs-body-sm: 0.875rem;    /* @kind font */
  --fs-caption: 0.75rem;     /* @kind font */
  --fs-eyebrow: 0.8125rem;   /* @kind font */

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

  /* ---- Letter spacing ---- */
  --ls-tighter: -0.03em;  /* @kind font */
  --ls-tight:   -0.015em; /* @kind font */
  --ls-normal:  0;        /* @kind font */
  --ls-wide:    0.04em;   /* @kind font */
  --ls-eyebrow: 0.16em;   /* @kind font */
}
