/* ===========================================================================
   Fluffy Favourites — Typography Tokens
   =========================================================================== */

:root {
  /* Families */
  --font-display: 'Fredoka', 'Trebuchet MS', system-ui, sans-serif;
  --font-script:  'Pacifico', 'Brush Script MT', cursive;
  --font-body:    'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;

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

  /* Fluid type scale (clamp: min → preferred → max) */
  --text-xs:   0.75rem;   /* 12px — legal / meta */
  --text-sm:   0.875rem;  /* 14px — captions, chips */
  --text-base: 1rem;      /* 16px — body */
  --text-md:   1.125rem;  /* 18px — lead body */
  --text-lg:   1.375rem;  /* 22px — card titles */
  --text-xl:   1.875rem;  /* 30px — section heads */
  --text-2xl:  2.5rem;    /* 40px — page titles */
  --text-3xl:  3.25rem;   /* 52px — hero display */

  /* Line heights */
  --leading-tight:   1.1;
  --leading-snug:    1.25;
  --leading-normal:  1.55;
  --leading-relaxed: 1.7;

  /* Letter spacing */
  --tracking-tight:  -0.01em;
  --tracking-normal: 0;
  --tracking-wide:   0.04em;
  --tracking-caps:   0.08em;  /* uppercase kickers / eyebrows */
}
