/* Montserrat Font Override for All Elements */
/* Override CSS variables first */
:root {
  --bultax-font: "Montserrat", sans-serif !important;
  --bultax-heading-font: "Montserrat", sans-serif !important;
}

/* Apply Montserrat to body and all elements */
body,
html {
  font-family: "Montserrat", sans-serif !important;
}

/* All text elements */
p, span, div, a, li, ul, ol, td, th, label, input, textarea, select, button, 
.main-menu__list, .topbar-one, .footer-widget, .sec-title, .bultax-btn,
.project-card, .service-one, .about-one, .testimonials-card, .blog-card {
  font-family: "Montserrat", sans-serif !important;
}

/* All headings */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.sec-title__title, .sec-title__tagline, .project-details__title,
.page-header__title, .bultax-btn, .main-menu__list a {
  font-family: "Montserrat", sans-serif !important;
}

/* Ensure all elements use Montserrat via CSS variable */
* {
  font-family: var(--bultax-font, "Montserrat", sans-serif) !important;
}

