/* ============================================================
   S3 Regnskap — Typography tokens
   Display : Bebas Neue       (headlines, hero numbers)
   Text/UI : Hanken Grotesk   (everything readable)
   Mono    : IBM Plex Mono    (figures, ledgers, code)
   ============================================================ */

:root {
  /* Families */
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-sans:    'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Weights (Hanken Grotesk) */
  --weight-light:    300;
  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;

  /* Type scale — rem based (1rem = 16px) */
  --text-xs:    0.75rem;   /* 12 */
  --text-sm:    0.875rem;  /* 14 */
  --text-base:  1rem;      /* 16 */
  --text-md:    1.125rem;  /* 18 */
  --text-lg:    1.375rem;  /* 22 */
  --text-xl:    1.75rem;   /* 28 */
  --text-2xl:   2.25rem;   /* 36 */
  --text-3xl:   3rem;      /* 48 */
  --text-4xl:   4rem;      /* 64 */
  --text-5xl:   5.5rem;    /* 88 */

  /* Line heights */
  --leading-none:    1;
  --leading-tight:   1.12;
  --leading-snug:    1.3;
  --leading-normal:  1.55;
  --leading-relaxed: 1.7;

  /* Letter spacing — Bebas Neue benefits from positive tracking */
  --tracking-display: 0.01em;
  --tracking-tight:  -0.01em;
  --tracking-normal: 0em;
  --tracking-wide:   0.04em;
  --tracking-caps:   0.12em;  /* eyebrows / overlines */

  /* Numeric figures: tabular by default for accounting data */
  --figure-tabular: tabular-nums; /* @kind other */
}
