/* ============================================================
   Hypermonkey — Typography tokens
   Display: Chakra Petch (squared, cut-corner — mirrors the faceted mark)
   Body/UI: IBM Plex Sans   ·   Mono: IBM Plex Mono
   ============================================================ */
:root {
  --font-display: 'Chakra Petch', 'Arial Narrow', sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', monospace;

  /* Type scale (1.25 major-third-ish, tuned) */
  --text-2xs: 11px;
  --text-xs:  12px;
  --text-sm:  14px;
  --text-base:16px;
  --text-md:  18px;
  --text-lg:  22px;
  --text-xl:  28px;
  --text-2xl: 36px;
  --text-3xl: 46px;
  --text-4xl: 60px;
  --text-5xl: 78px;
  --text-6xl: 104px;

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

  /* Line heights */
  --lh-tight: 1.05; /* @kind other */
  --lh-snug: 1.2; /* @kind other */
  --lh-normal: 1.5; /* @kind other */
  --lh-relaxed: 1.65; /* @kind other */

  /* Tracking — display is set TIGHT, labels are set WIDE (logo "SOLUTIONS") */
  --tracking-display: -0.01em;
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.08em;
  --tracking-label: 0.18em;   /* the spaced-out caps of the lockup */

  /* Semantic roles */
  --heading-font: var(--font-display);
  --heading-weight: var(--fw-bold);
  --eyebrow-font: var(--font-mono);
}
