/* Import Montserrat font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* Apply Montserrat to all text */
* {
    font-family: 'Montserrat', sans-serif !important;
}

/* Make headings bold */
h1, h2, h3, h4, h5, h6, 
.qodef-title h1, 
.qodef-title h2, 
.qodef-title h3, 
.qodef-title h4, 
.qodef-title h5, 
.qodef-title h6,
.qodef-page-title h1,
.qodef-page-title h2,
.qodef-page-title h3,
.qodef-page-title h4,
.qodef-page-title h5,
.qodef-page-title h6,
.qodef-iwt-title-holder h5,
.qodef-iwt-title-holder h4,
.qodef-iwt-title-holder h3,
.qodef-iwt-title-holder h2,
.qodef-iwt-title-holder h1 {
    font-weight: 700 !important;
}

/* Make other text semi-bold */
p, span, a, div, li, td, th, label, input, textarea, select, button {
    font-weight: 600 !important;
}

/* Make form elements and buttons normal weight */
input, textarea, select, button, .qodef-btn {
    font-weight: 500 !important;
} 