/* Custom Fonts
-------------------------------------------------------------- */

/* Example font face declarations - Replace with your actual fonts */
@font-face {
    font-family: 'CustomFont';
    src: url('../fonts/your-font.woff2') format('woff2'),
         url('../fonts/your-font.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CustomFont';
    src: url('../fonts/your-font-bold.woff2') format('woff2'),
         url('../fonts/your-font-bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Font usage classes */
.custom-font {
    font-family: 'CustomFont', sans-serif;
}

/* Font weights */
.font-normal {
    font-weight: normal;
}

.font-bold {
    font-weight: bold;
} 