/* ==================== 本地字体配置 ==================== */
/* 
 * 字体文件需要放在 fonts/ 目录下
 * 字体文件命名格式：
 * - Inter-300.woff2 (Inter 字体，权重 300)
 * - Inter-400.woff2 (Inter 字体，权重 400)
 * - Inter-500.woff2 (Inter 字体，权重 500)
 * - Inter-600.woff2 (Inter 字体，权重 600)
 * - Inter-700.woff2 (Inter 字体，权重 700)
 * - NotoSansSC-300.woff2 (Noto Sans SC 字体，权重 300)
 * - NotoSansSC-400.woff2 (Noto Sans SC 字体，权重 400)
 * - NotoSansSC-500.woff2 (Noto Sans SC 字体，权重 500)
 * - NotoSansSC-700.woff2 (Noto Sans SC 字体，权重 700)
 */

/* Inter 字体 - 300 (Light) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/Inter-300.woff2') format('woff2');
}

/* Inter 字体 - 400 (Regular) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/Inter-400.woff2') format('woff2');
}

/* Inter 字体 - 500 (Medium) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/Inter-500.woff2') format('woff2');
}

/* Inter 字体 - 600 (SemiBold) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/Inter-600.woff2') format('woff2');
}

/* Inter 字体 - 700 (Bold) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/Inter-700.woff2') format('woff2');
}

/* Noto Sans SC 字体 - 300 (Light) */
@font-face {
    font-family: 'Noto Sans SC';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/NotoSansSC-300.woff2') format('woff2');
}

/* Noto Sans SC 字体 - 400 (Regular) */
@font-face {
    font-family: 'Noto Sans SC';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/NotoSansSC-400.woff2') format('woff2');
}

/* Noto Sans SC 字体 - 500 (Medium) */
@font-face {
    font-family: 'Noto Sans SC';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/NotoSansSC-500.woff2') format('woff2');
}

/* Noto Sans SC 字体 - 700 (Bold) */
@font-face {
    font-family: 'Noto Sans SC';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/NotoSansSC-700.woff2') format('woff2');
}

