/**
 * Custom Fonts
 * Place your font files in /fonts/ folder
 */

/* Lato — Thin (100) */
@font-face {
    font-family: 'Lato';
    src: url('./Lato-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('./Lato-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

/* Lato — Light (300) */
@font-face {
    font-family: 'Lato';
    src: url('./Lato-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('./Lato-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

/* Lato — Regular (400) */
@font-face {
    font-family: 'Lato';
    src: url('./Lato-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('./Lato-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* Lato — Bold (700) */
@font-face {
    font-family: 'Lato';
    src: url('./Lato-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: bold;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('./Lato-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* Lato — Black (900) */
@font-face {
    font-family: 'Lato';
    src: url('./Lato-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('./Lato-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}



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

/* Example: Custom Font 2 */
/* @font-face {
    font-family: 'YourHeadingFont';
    src: url('HeadingFont-Regular.woff2') format('woff2'),
        url('HeadingFont-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
} */

/**
 * HOW TO USE YOUR CUSTOM FONTS:
 * 
 * 1. Place your font files in this /fonts/ folder
 *    Supported formats: .woff2, .woff, .ttf, .otf
 * 
 * 2. Update @font-face rules above with your actual font names
 * 
 * 3. In style.css, update the CSS variables:
 *    --font-body: 'YourCustomFont', sans-serif;
 *    --font-heading: 'YourHeadingFont', serif;
 * 
 * EXAMPLE with real fonts:
 * If you have "Montserrat-Regular.woff2" in /fonts/ folder:
 * 
 * @font-face {
 *     font-family: 'Montserrat';
 *     src: url('Montserrat-Regular.woff2') format('woff2');
 *     font-weight: 400;
 *     font-style: normal;
 * }
 * 
 * Then in style.css:
 * --font-body: 'Montserrat', sans-serif;
 */