/* Hunger House — Typography tokens */

:root {
  /* Families */
  --font-marker:  'Permanent Marker', 'Comic Sans MS', cursive;        /* logo-echo accents, stamps, kickers */
  --font-display: 'Baloo 2', 'Trebuchet MS', system-ui, sans-serif;    /* headings — rounded + friendly */
  --font-body:    'Nunito', system-ui, -apple-system, sans-serif;      /* body + UI */

  /* Type scale (1.250 major-third, rem) */
  --text-2xs:  0.6875rem; /* 11 */
  --text-xs:   0.75rem;   /* 12 */
  --text-sm:   0.875rem;  /* 14 */
  --text-base: 1rem;      /* 16 */
  --text-md:   1.125rem;  /* 18 */
  --text-lg:   1.375rem;  /* 22 */
  --text-xl:   1.75rem;   /* 28 */
  --text-2xl:  2.25rem;   /* 36 */
  --text-3xl:  2.875rem;  /* 46 */
  --text-4xl:  3.75rem;   /* 60 */

  /* Weights */
  --weight-regular: 400;
  --weight-medium:  500;
  --weight-semibold:600;
  --weight-bold:    700;
  --weight-extra:   800;

  /* Line heights */
  --leading-tight:  1.1;
  --leading-snug:   1.25;
  --leading-normal: 1.5;
  --leading-relaxed:1.65;

  /* Letter spacing */
  --tracking-tight:  -0.01em;
  --tracking-normal: 0;
  --tracking-wide:   0.04em;
  --tracking-marker: 0.02em;

  /* Semantic roles */
  --type-display-font: var(--font-display);
  --type-display-weight: var(--weight-extra);
  --type-heading-font: var(--font-display);
  --type-heading-weight: var(--weight-bold);
  --type-body-font: var(--font-body);
  --type-body-weight: var(--weight-regular);
  --type-kicker-font: var(--font-marker);
}
