/* MoneySastra — one-font typography system
   19 Aug 2026

   Poppins is now the site-wide font for public pages and My MoneySastra.
   Existing sizes, weights, colours and spacing are intentionally preserved.
*/
:root{
  --ms-site-font:'Poppins',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
}

html body{
  font-family:var(--ms-site-font) !important;
}

/* Override the old Lora/Poppins split without changing layout or sizing. */
html body *:not(svg):not(svg *):not(.fa):not([class^="fa-"]):not([class*=" fa-"]):not(.material-icons):not(.material-symbols-outlined){
  font-family:var(--ms-site-font) !important;
}

/* Form controls do not always inherit typography consistently across browsers. */
html body input,
html body textarea,
html body select,
html body option,
html body button{
  font-family:var(--ms-site-font) !important;
}
