/* Big City Group — Typography tokens
   Radikal -> Hanken Grotesk (primary). Century Gothic -> Jost (geometric display).
   Guide rules: headers are UPPERCASE, tracked +30..100 (0.03–0.1em), Left aligned. */
:root{
  --font-primary:'Hanken Grotesk',system-ui,-apple-system,'Segoe UI',sans-serif;   /* Radikal */
  --font-geometric:'Jost','Hanken Grotesk',system-ui,sans-serif;                    /* Century Gothic */
  --font-display:var(--font-geometric);   /* headers / logotype voice */
  --font-body:var(--font-primary);

  /* 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:48px;
  --text-4xl:64px;
  --text-5xl:88px;

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

  /* 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 — the brand's signature tracked-cap headers */
  --track-tight:-0.01em; /* @kind other */
  --track-normal:0; /* @kind other */
  --track-wide:0.06em; /* @kind other */
  --track-header:0.12em; /* @kind other */
  --track-eyebrow:0.22em; /* @kind other */
}
