/*
 * Fonts Configuration
 * 字体配置文件
 *
 * 混合字体配置：
 * - Inter 字体：本地文件（已下载）
 * - Noto Sans SC 字体：Google Fonts CDN（CJK 字体文件较大，使用 CDN 优化加载）
 */

/* Google Fonts CDN - Noto Sans SC only */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&display=swap');

/*
 * 本地字体配置（如已下载字体文件，请取消注释）
 *
 * 下载字体文件后，将以下代码取消注释，并注释掉上面的 @import 行
 */

/*
@font-face {
    font-family: 'Noto Sans SC';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Noto Sans SC Light'),
         url('NotoSansSC-Light.woff2') format('woff2');
}

@font-face {
    font-family: 'Noto Sans SC';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Noto Sans SC Regular'),
         url('NotoSansSC-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Noto Sans SC';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Noto Sans SC Medium'),
         url('NotoSansSC-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Noto Sans SC';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Noto Sans SC Bold'),
         url('NotoSansSC-Bold.woff2') format('woff2');
}
*/

/* Local Inter fonts (downloaded) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Inter Light'),
         url('Inter-Light.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Inter Regular'),
         url('Inter-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Inter Medium'),
         url('Inter-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local('Inter SemiBold'),
         url('Inter-SemiBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Inter Bold'),
         url('Inter-Bold.woff2') format('woff2');
}
