/* Service Creed — typography tokens.
   Flyer type is a heavy geometric sans; nearest Google Fonts match: Poppins (display) + Nunito Sans (body). */
:root {
  --font-display: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-body: 'Nunito Sans', system-ui, -apple-system, sans-serif;

  --text-xs: 12px;
  --text-sm: 14px;
  --text-md: 16px;
  --text-lg: 18px;
  --text-xl: 22px;
  --text-2xl: 28px;
  --text-3xl: 36px;
  --text-4xl: 48px;
  --text-5xl: 60px;

  --weight-regular: 400;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-normal: 1.55;

  --tracking-caps: 0.14em; /* SMART SOLUTIONS-style letterspaced caps */
}
