/* Berkshire Safety Consultants — Typography
   Open Sans is the workhorse (body, UI, the logo wordmark).
   Poppins is the friendly display partner.
   Brand headlines are frequently BOLD UPPERCASE, often italic for energy. */

:root {
  /* ---- Families ---- */
  --font-primary: 'Open Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Poppins', 'Open Sans', system-ui, sans-serif;
  --font-body:    var(--font-primary);

  /* ---- Weights ---- */
  --fw-regular: 400; /* @kind font */
  --fw-medium:  500; /* @kind font */
  --fw-semibold:600; /* @kind font */
  --fw-bold:    700; /* @kind font */
  --fw-extra:   800; /* @kind font */

  /* ---- Type scale (1.250 major-third-ish, tuned) ---- */
  --text-2xs: 0.6875rem;  /* 11px — labels, captions */
  --text-xs:  0.75rem;    /* 12px */
  --text-sm:  0.875rem;   /* 14px */
  --text-md:  1rem;       /* 16px — base body */
  --text-lg:  1.125rem;   /* 18px — lead body */
  --text-xl:  1.375rem;   /* 22px */
  --text-2xl: 1.75rem;    /* 28px — section heading */
  --text-3xl: 2.25rem;    /* 36px */
  --text-4xl: 3rem;       /* 48px — display */
  --text-5xl: 4rem;       /* 64px — hero */
  --text-6xl: 5.5rem;     /* 88px — poster */

  /* ---- Line heights ---- */
  --leading-tight:   1.05;
  --leading-snug:    1.2;
  --leading-normal:  1.5;
  --leading-relaxed: 1.65;

  /* ---- Letter spacing ---- */
  --tracking-tight:  -0.02em;
  --tracking-normal: 0;
  --tracking-wide:   0.04em;   /* uppercase labels */
  --tracking-wider:  0.12em;   /* logo wordmark / eyebrows */
}
