/* /assets/css/fonts.css */

/* Load the variable Onest font once */
/* @import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap"); */


/* Load Onest & Pragati Narrow once */
@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&family=Pragati+Narrow:wght@400;700&display=swap");



/* Single source of truth: family + fallbacks */
:root{
  --font-onest: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Helvetica Neue", sans-serif;
  --font-pragati: "Pragati Narrow", sans-serif;
}

/* Global defaults (both CI4 & WP will inherit) */
html, body { font-family: var(--font-onest); }
 

/* Utility class for Pragati Narrow */
.font-pragati {
  font-family: var(--font-pragati) !important;
}

/*

*/