/* Ibrand Font Family - Custom Brand Typography */

/* 
Note: Place the Ibrand font files in the assets/fonts/ directory:
- Ibrand-Regular.woff2
- Ibrand-Regular.woff
- Ibrand-Bold.woff2
- Ibrand-Bold.woff
- Ibrand-Black.woff2
- Ibrand-Black.woff
*/

/* Ibrand Regular */
@font-face {
    font-family: 'Ibrand';
    src: url('../assets/fonts/Ibrand-Regular.woff2') format('woff2'),
         url('../assets/fonts/Ibrand-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Ibrand Bold */
@font-face {
    font-family: 'Ibrand';
    src: url('../assets/fonts/Ibrand-Bold.woff2') format('woff2'),
         url('../assets/fonts/Ibrand-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Ibrand Black */
@font-face {
    font-family: 'Ibrand';
    src: url('../assets/fonts/Ibrand-Black.woff2') format('woff2'),
         url('../assets/fonts/Ibrand-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Fallback for when Ibrand fonts are not available */
@supports not (font-family: 'Ibrand') {
    :root {
        --primary-font: 'Arial Black', Arial, sans-serif;
    }
}

/* Brand Typography Classes */
.brand-title {
    font-family: var(--primary-font);
    font-weight: 900; /* Black */
}

.brand-subtitle {
    font-family: var(--primary-font);
    font-weight: 700; /* Bold */
}

.brand-text {
    font-family: var(--primary-font);
    font-weight: 400; /* Regular */
}