/* Typography tokens — font families, type scale, and weights.
   Body text uses Fira Code (monospace) for cyberpunk/terminal aesthetic.
   Display text uses Share Tech for headings and prominent UI text. */

:root,
[data-theme="cyberpunk"] {
  /* === Font families === */
  --hh-font-mono: 'Fira Code', ui-monospace, 'Cascadia Code', 'Consolas', monospace;
  --hh-font-display: 'Share Tech', system-ui, -apple-system, sans-serif;

  /* === Type scale === */
  --hh-text-xs: 0.75rem;     /* 12px */
  --hh-text-sm: 0.875rem;    /* 14px */
  --hh-text-base: 1rem;      /* 16px */
  --hh-text-lg: 1.125rem;    /* 18px */
  --hh-text-xl: 1.25rem;     /* 20px */
  --hh-text-2xl: 1.5rem;     /* 24px */
  --hh-text-3xl: 2rem;       /* 32px */
  --hh-text-4xl: 2.5rem;     /* 40px */

  /* === Line heights === */
  --hh-leading-tight: 1.25;
  --hh-leading-normal: 1.5;
  --hh-leading-relaxed: 1.75;

  /* === Font weights === */
  --hh-weight-normal: 400;
  --hh-weight-medium: 500;
  --hh-weight-semibold: 600;
  --hh-weight-bold: 700;

  /* === Letter spacing === */
  --hh-tracking-tight: -0.025em;
  --hh-tracking-normal: 0em;
  --hh-tracking-wide: 0.05em;
  --hh-tracking-wider: 0.1em;
}
