/* One source of truth for typography */
:root{
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji",
               "Segoe UI Emoji", "Segoe UI Symbol";
  --lh: 1.6;
}

html{ font-size:16px; }
body{
  font-family: var(--font-sans);
  line-height: var(--lh);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings look the same everywhere */
h1,h2,h3,h4,h5,h6,
.display-1,.display-2,.display-3,.display-4,.display-5,.display-6{
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: .2px;
}

/* Make sure utility weights map correctly */
.fw-semibold{ font-weight:600 !important; }
.fw-bold    { font-weight:700 !important; }
.fw-bolder  { font-weight:800 !important; }

/* Neutralize any component-specific overrides (from sections.css etc.) */
.navbar, .dropdown-menu, .btn, .lead, p, li, .card, .cta,
.hero, .feature-card, .bullets, .accordion, .form-control {
  font-family: inherit !important;
}
