/* Preshh typography — single family: Outfit (100–900) */
:root {
  --font-brand: "Outfit", "Segoe UI", sans-serif;
  --font-display: var(--font-brand);
  --font-body: var(--font-brand);

  /* Weights */
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-black: 900;

  /* Scale (px) */
  --text-xs: 12px;
  --text-sm: 14px;
  --text-md: 16px;
  --text-lg: 20px;
  --text-xl: 24px;
  --text-2xl: 32px;
  --text-3xl: 44px;
  --text-4xl: 60px;

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

  /* Tracking: display is tight; small caps labels are wide (as in the seals) */
  --tracking-display: -0.02em;
  --tracking-caps: 0.14em;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
}
