/* Piratas do Amor — Typography tokens */
:root {
  /* ---- Families ----
     serif      : antique press roman — the title face + editorial (IM Fell DW Pica)
     display    : titles (aliased to --font-serif)
     hand       : hand-lettered felt-tip caps — optional playful accent (Permanent Marker)
     display-sc : small-caps antique — eyebrows, section labels, field labels
     body       : clean geometric sans — UI, paragraphs, controls (Jost)
     mono       : ticket / coordinate / code (Space Mono) */
  --font-serif: 'IM Fell DW Pica', 'Iowan Old Style', Georgia, serif;
  --font-display: var(--font-serif);
  --font-hand: 'Permanent Marker', 'Bradley Hand', 'Segoe Print', cursive;
  --font-display-sc: 'IM Fell English SC', 'IM Fell DW Pica', Georgia, serif;
  --font-body: 'Jost', 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'Space Mono', 'SFMono-Regular', ui-monospace, monospace;

  /* ---- Type scale (rem, 16px base) ---- */
  --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: 3rem;       /* 48 */
  --text-4xl: 4rem;       /* 64 */
  --text-5xl: 5.5rem;     /* 88 */
  --text-6xl: 7.5rem;     /* 120 */

  /* ---- Weights (Jost) ---- */
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* ---- Line heights ---- */
  --leading-none: 1;
  --leading-tight: 1.08;
  --leading-snug: 1.22;
  --leading-normal: 1.5;
  --leading-relaxed: 1.65;

  /* ---- Letter spacing ---- */
  --tracking-tight: -0.01em;
  --tracking-normal: 0;
  --tracking-wide: 0.04em;
  --tracking-wider: 0.12em;   /* small-caps labels, eyebrows */
  --tracking-widest: 0.22em;  /* stamped / ticket labels */
}
