/* ============================================================
   JunoMarkets — Typography tokens
   Display:  Sora            (geometric; substitutes brand display)
   Body/UI:  Noto Sans       (Latin sibling of brand's Source Han Sans)
   Numerals: Poppins         (prices, tickers, P&L — tabular-nums)
   ============================================================ */
:root {
  --font-display: 'Source Han Sans HK', 'Sora', system-ui, sans-serif;
  --font-body:    'Source Han Sans HK', 'Noto Sans', system-ui, -apple-system, sans-serif;
  --font-mono:    'Poppins', system-ui, -apple-system, sans-serif;

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

  /* Type scale (1.250 major-third, 16px base) */
  --text-xs:   12px;
  --text-sm:   14px;
  --text-base: 16px;
  --text-md:   18px;
  --text-lg:   20px;
  --text-xl:   24px;
  --text-2xl:  30px;
  --text-3xl:  38px;
  --text-4xl:  48px;
  --text-5xl:  60px;
  --text-6xl:  76px;

  /* Line heights */
  --leading-tight:   1.1;
  --leading-snug:    1.25;
  --leading-normal:  1.5;
  --leading-relaxed: 1.65;

  /* Letter spacing */
  --tracking-tight:  -0.02em;
  --tracking-normal: 0;
  --tracking-wide:   0.04em;
  --tracking-caps:   0.12em; /* eyebrows / overlines, set in UPPERCASE */
}
