/*
 * Child theme override of innomax-font.css
 * Adds font-display: swap to all @font-face declarations.
 *
 * WHY: Without font-display:swap the browser hides text until custom fonts
 *      finish downloading (FOIT). With swap, a fallback system font is shown
 *      immediately and swapped once the custom font is ready, which improves
 *      FCP and LCP scores significantly.
 *
 * NOTE: Font file paths point to the PARENT theme's /assets/fonts/ directory
 *       so no font files need to be duplicated in the child theme.
 */

@font-face {
    font-family: 'Aeonik';
    src: url('../../innomax/assets/fonts/Aeonik-Medium.woff2') format('woff2'),
    url('../../innomax/assets/fonts/Aeonik-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Aeonik';
    src: url('../../innomax/assets/fonts/Aeonik-Bold.woff2') format('woff2'),
    url('../../innomax/assets/fonts/Aeonik-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TransducerTest';
    src: url('../../innomax/assets/fonts/TransducerTest-Medium-BF645c3dd896377.woff2') format('woff2'),
    url('../../innomax/assets/fonts/TransducerTest-Medium-BF645c3dd896377.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TransducerTest';
    src: url('../../innomax/assets/fonts/TransducerTest-Bold-BF645c3dd70a4f5.woff2') format('woff2'),
    url('../../innomax/assets/fonts/TransducerTest-Bold-BF645c3dd70a4f5.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GT-Super-Text';
    src: url('../../innomax/assets/fonts/GT-Super-Text-Medium-Trial.woff2') format('woff2'),
    url('../../innomax/assets/fonts/GT-Super-Text-Medium-Trial.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'GT-Super-Text';
    src: url('../../innomax/assets/fonts/GT-Super-Text-Bold-Trial.woff2') format('woff2'),
    url('../../innomax/assets/fonts/GT-Super-Text-Bold-Trial.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Agrandir';
    src: url('../../innomax/assets/fonts/Agrandir-TextBold.woff2') format('woff2'),
    url('../../innomax/assets/fonts/Agrandir-TextBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Agrandir';
    src: url('../../innomax/assets/fonts/Agrandir-GrandHeavy.woff2') format('woff2'),
    url('../../innomax/assets/fonts/Agrandir-GrandHeavy.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
