@charset "utf-8";
/* CSS Document */

@font-face {
    /* 给自定义字体取个名字，后面可以用这个名字引用字体 */
    font-family: 'MyCustomFont';
    /* 字体文件的路径，这里假设字体文件在当前目录下 */
/*    src: url('../fonts/NotoSansKR-VariableFont_wght.ttf');*/
    src: url('../fonts/11.woff2') format('woff2');
    /* 可选的字体样式，如 normal 或 italic */
    font-style: normal;
    /* 可选的字体粗细，如 normal 或 bold */
    font-weight: normal;
    /*让浏览器先用系统字体显示文字，自定义字体加载完成后再替换，避免页面文字空白*/
    font-display: swap;
}
@font-face {
    /* 给自定义字体取个名字，后面可以用这个名字引用字体 */
    font-family: 'Roboto';
    /* 字体文件的路径，这里假设字体文件在当前目录下 */
    src: url('../fonts/Roboto/Roboto-VariableFont_wdth,wght.ttf');
    /* 可选的字体样式，如 normal 或 italic */
    font-style: normal;
    /* 可选的字体粗细，如 normal 或 bold */
    font-weight: bold;
    /*让浏览器先用系统字体显示文字，自定义字体加载完成后再替换，避免页面文字空白*/
    font-display: swap;
}