/* ── Shelly Kelly · Typography tokens ───────────────────────────────────
   Pacifico (script display) · Poppins (headings/UI) · Quicksand (body) */

:root {
  /* families */
  --font-script:  'Pacifico', 'Brush Script MT', cursive;      /* wordmark, hero */
  --font-heading: 'Poppins', system-ui, sans-serif;            /* section titles, UI */
  --font-body:    'Quicksand', system-ui, sans-serif;          /* body, captions */

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

  /* fluid type scale */
  --fs-display:  clamp(2.75rem, 6vw, 4.5rem); /* @kind font */
  --fs-h1:       clamp(2rem, 4vw, 3rem);         /* @kind font */
  --fs-h2:       clamp(1.5rem, 2.6vw, 2.125rem); /* @kind font */
  --fs-h3:       1.375rem;   /* @kind font */
  --fs-h4:       1.125rem;   /* @kind font */
  --fs-lead:     1.1875rem; /* @kind font */
  --fs-body:     1rem;       /* @kind font */
  --fs-sm:       0.875rem;   /* @kind font */
  --fs-xs:       0.75rem;    /* @kind font */

  /* line heights */
  --lh-tight:  1.1;   /* @kind font */
  --lh-snug:   1.3;   /* @kind font */
  --lh-normal: 1.55;  /* @kind font */
  --lh-loose:  1.7;   /* @kind font */

  /* letter spacing */
  --ls-eyebrow: 0.18em; /* @kind font */
  --ls-tight:  -0.01em;   /* @kind font */
  --ls-normal: 0;         /* @kind font */
}
