/*
 * Heebo global font override — anistream.co.il
 * Loads Heebo (Google Font) sitewide so text renders consistently.
 * Logo is intentionally excluded; icon fonts (FontAwesome/dashicons/etc.)
 * keep their own font-family and are unaffected by inheritance.
 * Added 2026-05-29.
 */

/* Base: everything inherits Heebo from the body wrapper */
body.anime-portal-body {
    font-family: 'Heebo', sans-serif !important;
}

/* Form controls don't inherit font-family by default — force Heebo */
body.anime-portal-body button,
body.anime-portal-body input,
body.anime-portal-body select,
body.anime-portal-body textarea,
body.anime-portal-body optgroup {
    font-family: 'Heebo', sans-serif !important;
}

/* Logo excluded — keep its current (non-Heebo) appearance */
body.anime-portal-body .logo-text,
body.anime-portal-body .logo-text *,
body.anime-portal-body .logo-gradient,
body.anime-portal-body .mobile-menu-header .logo-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif !important;
}
