/* Gnáthos — typography tokens. Single family: Poppins (as in brand deck). */
:root {
  --font-sans: 'Poppins', 'Segoe UI', sans-serif;

  /* Weights actually used by the brand */
  --weight-light: 300;     /* body text in deck */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;  /* subheads, labels */
  --weight-bold: 700;      /* titles */

  /* Scale */
  --text-xs: 12px;
  --text-sm: 13.5px;
  --text-base: 15px;
  --text-lg: 18px;
  --text-xl: 22px;
  --text-2xl: 28px;
  --text-3xl: 36px;
  --text-4xl: 48px;

  --leading-tight: 1.15;
  --leading-snug: 1.35;
  --leading-body: 1.6;

  --tracking-caps: 0.08em; /* uppercase kickers like GNÁTHOS */
}
