/*
  In order to use custom font in child project override this file or change path in Magento_Theme/layout/default.xml `local.fonts.css`
  You can use https://google-webfonts-helper.herokuapp.com/ to generate local fonts
  Store fonts in src/web/fonts
*/

/* libre-franklin-300 - latin-ext_latin */
@font-face {
    font-family: 'Libre Franklin';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local(''),
        url('../fonts/libre-franklin-v11-latin-ext_latin-300.woff2')
            format('woff2'),
        url('../fonts/libre-franklin-v11-latin-ext_latin-300.woff')
            format('woff');
}
/* libre-franklin-regular - latin-ext_latin */
@font-face {
    font-family: 'Libre Franklin';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local(''),
        url('../fonts/LibreFranklin-Regular.ttf')
            format('truetype');
}
/* libre-franklin-700 - latin-ext_latin */
@font-face {
    font-family: 'Libre Franklin';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local(''),
        url('../fonts/LibreFranklin-SemiBold.ttf')
            format('truetype');
}
/* libre-franklin-600 - latin-ext_latin */
@font-face {
    font-family: 'Libre Franklin';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local(''),
        url('../fonts/LibreFranklin-Bold.ttf')
            format('truetype');
}
/* libre-franklin-900 - latin-ext_latin */
@font-face {
    font-family: 'Libre Franklin';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: local(''),
        url('../fonts/libre-franklin-v11-latin-ext_latin-900.woff2')
            format('woff2'),
        url('../fonts/libre-franklin-v11-latin-ext_latin-900.woff')
            format('woff');
}

/* Noto Emoji-400 */
@font-face {
    font-family: 'Noto Emoji';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local(''),
        url('../fonts/NotoEmoji-Regular.ttf')
            format('truetype');
}
/* Noto Emoji-600 */
@font-face {
    font-family: 'Noto Emoji';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local(''),
        url('../fonts/NotoEmoji-SemiBold.ttf')
            format('truetype');
}
/* Noto Emoji-700 */
@font-face {
    font-family: 'Noto Emoji';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local(''),
        url('../fonts/NotoEmoji-Bold.ttf')
            format('truetype');
}

/* Fluent Emoji */
@font-face {
    font-family: "Fluent Emoji";
    src: url("../fonts/fluent-emoji-high-contrast.eot");
    src: url("../fonts/fluent-emoji-high-contrast.eot") format("embedded-opentype"),
    url("../fonts/fluent-emoji-high-contrast.ttf") format("truetype"),
    url("../fonts/fluent-emoji-high-contrast.woff") format("woff"),
    url("../fonts/fluent-emoji-high-contrast.woff2") format("woff2"),
    url("../fonts/fluent-emoji-high-contrast.svg") format("svg");
    font-weight: normal;
    font-style: normal;
}
