/* Alameda Capital — Typography tokens */

:root {
  /* Families */
  --font-serif: "Newsreader", Georgia, "Times New Roman", serif;
  --font-sans:  "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono:  "IBM Plex Mono", "SF Mono", ui-monospace, Menlo, Consolas, monospace;

  /* Semantic role families */
  --font-display: var(--font-serif); /* headings & pull quotes */
  --font-body:    var(--font-sans);  /* running text & UI */
  --font-data:    var(--font-mono);  /* figures, tickers, rates */

  /* Type scale (1.250 major-third, 16px base) */
  --text-2xs: 0.6875rem; /* 11px — legal / disclaimers */
  --text-xs:  0.75rem;   /* 12px — captions, labels */
  --text-sm:  0.875rem;  /* 14px — secondary / dense UI */
  --text-base:1rem;      /* 16px — body */
  --text-md:  1.125rem;  /* 18px — lead paragraph */
  --text-lg:  1.375rem;  /* 22px */
  --text-xl:  1.75rem;   /* 28px */
  --text-2xl: 2.25rem;   /* 36px */
  --text-3xl: 2.9375rem; /* 47px */
  --text-4xl: 3.75rem;   /* 60px — hero */
  --text-5xl: 4.75rem;   /* 76px — display */

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

  /* Line heights */
  --leading-tight:   1.08; /* display headings */
  --leading-snug:    1.22; /* headings */
  --leading-normal:  1.55; /* body */
  --leading-relaxed: 1.7;  /* long-form */

  /* Letter spacing */
  --tracking-tight:   -0.02em; /* large serif display */
  --tracking-normal:  0;
  --tracking-wide:    0.04em;
  --tracking-eyebrow: 0.22em;  /* the spaced index/label — editorial */
}
