/*
 * Global Poppins font override for all dashboards (admin, business, auth).
 * Loaded after style.css / custom.css so it wins over Inter / Manrope / Lato / Roboto.
 * Icon fonts (Font Awesome) are explicitly preserved.
 */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,600;1,700&display=swap");

:root {
    --ff: "Poppins", sans-serif;
}

html body,
html body *:not(.fa):not(.fas):not(.far):not(.fal):not(.fab):not(.fad):not([class^="fa-"]):not([class*=" fa-"]) {
    font-family: "Poppins", sans-serif !important;
}

/* Preserve Font Awesome icon glyphs */
.fa,
.fas,
.far,
.fal,
.fad,
[class^="fa-"],
[class*=" fa-"] {
    font-family: "Font Awesome 5 Pro" !important;
}

.fab,
.fa-brands {
    font-family: "Font Awesome 5 Brands" !important;
}
