/* Filsa Business — Typography tokens */

:root {
  /* Families — Poppins is the Filsa brand font */
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-sans:    'Poppins', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  /* Type scale (px) — display uses --font-display, the rest --font-sans */
  --text-display-xl: 48px;  /* hero balance, marketing */
  --text-display-lg: 40px;
  --text-h1: 32px;
  --text-h2: 26px;
  --text-h3: 21px;
  --text-h4: 18px;
  --text-body-lg: 18px;
  --text-body: 16px;
  --text-body-sm: 14px;
  --text-caption: 13px;
  --text-micro: 11px;

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

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

  /* Letter spacing */
  --tracking-tight: -0.02em;   /* display & large headings */
  --tracking-snug: -0.01em;
  --tracking-normal: 0;
  --tracking-wide: 0.04em;     /* eyebrows / labels (uppercase) */
  --tracking-wider: 0.12em;
}
