/* Compliance Adda — webfonts.
   Brand spec calls for the proprietary "Wise Sans" (weight 900) for hero display.
   SUBSTITUTE: Manrope 800 (display) + Inter (sub-display/body/UI), per the
   spec's own open-source substitution note. Google-hosted; no local binaries. */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@600;800&family=Inter:wght@400;600;900&display=swap");

:root {
  --font-display: "Manrope", "Inter", system-ui, sans-serif;   /* Wise Sans stand-in, always weight 800 */
  --font-body: "Inter", system-ui, sans-serif;                  /* everything else */
}

body {
  font-family: var(--font-body);
  font-feature-settings: "calt";
  -webkit-font-smoothing: antialiased;
}
