/* site-fonts.css
   Keeps Poppins as the primary font and provides fallbacks.
   Loaded after the template CSS so it overrides defaults.
*/
:root{
  /* If the template uses a CSS variable for body font, override it here */
  --bs-body-font-family: "Poppins", "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Global default */
html, body, .app-default, .app-root, #kt_app_root {
  font-family: "Poppins", "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* If specific places in the template override the font, these rules help ensure Poppins is applied */
body, .kt_body, .bg-body, .d-flex, .fw-semibold {
  font-family: "Poppins", "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial !important;
}