/* Dokima.AI — Typography tokens (v2 direction)
   Space Grotesk = display/titles (bold, tight). Hanken Grotesk = UI/body.
   JetBrains Mono = data/scores/eyebrows. PT Mono = legacy logotype. */

:root {
  --font-sans: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Poppins", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  --font-logo: "PT Mono", "JetBrains Mono", monospace;

  /* Type scale */
  --text-xs: 0.75rem;    /* 12 */
  --text-sm: 0.875rem;   /* 14 */
  --text-base: 1rem;     /* 16 */
  --text-lg: 1.125rem;   /* 18 */
  --text-xl: 1.25rem;    /* 20 */
  --text-2xl: 1.5rem;    /* 24 */
  --text-3xl: 1.875rem;  /* 30 */
  --text-4xl: 2.25rem;   /* 36 */
  --text-5xl: 3rem;      /* 48 */
  --text-6xl: 3.375rem;  /* 54 */
  --text-7xl: 4.25rem;   /* 68 */

  /* Weights — titles are bold (700) in this direction */
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-display: 700;

  /* Tracking */
  --tracking-display: -0.02em;   /* Poppins headings, slightly tight */
  --tracking-logo: -0.05em;
  --tracking-wide: 0.04em;       /* eyebrows */
  --tracking-widest: 0.18em;

  /* Line heights */
  --leading-display: 1.04;
  --leading-tight: 1.2;
  --leading-normal: 1.5;
  --leading-relaxed: 1.65;

  /* Semantic aliases */
  --text-body: var(--text-base);
  --text-heading: var(--text-4xl);
}
