/*
 * Global font fallback stacks. Divi's own global settings (heading_font/body_font)
 * are set to Parkinsans/Comfortaa via functions.php, so this is a low-specificity
 * safety net (no !important, so icon fonts and any Divi module-level font override
 * still take precedence) that also guarantees Poppins as the fallback before Comfortaa
 * hands off to a generic sans-serif.
 */

body {
    font-family: 'Comfortaa', 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Parkinsans', sans-serif;
}
