/* Font Family Declarations */
@font-face {
    font-family: 'outfit_regular';
    src: url('../fonts/Outfit-Regular.woff2') format('woff2'),
         url('../fonts/Outfit-Regular.woff') format('woff'),
         url('../fonts/Outfit-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'outfit_bold';
    src: url('../fonts/Outfit-Bold.woff2') format('woff2'),
         url('../fonts/Outfit-Bold.woff') format('woff'),
         url('../fonts/Outfit-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Base Typography */
body,
p,
span,
div,
input,
textarea,
select,
.form-control {
    font-family: 'outfit_regular', sans-serif !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.btn,
.nav-link,
.navbar-brand,
.card-title,
.section-title,
.feature-title,
strong,
b,
th,
.badge,
.nav-tabs .nav-link,
.accordion-button {
    font-family: 'outfit_bold', sans-serif !important;
}

/* Additional Typography Classes */
.font-regular {
    font-family: 'outfit_regular', sans-serif !important;
}

.font-bold {
    font-family: 'outfit_bold', sans-serif !important;
} 