﻿/* 
 * 本地字体文件定义
 * 字体文件应放置在 static/fonts/ 目录下（与 fonts.css 同一目录）
 * 如果字体文件不存在，浏览器会自动使用 font-family 中定义的系统字体后备方案
 */

/* Inter Font Family */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('Inter-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 450;
    font-display: swap;
    src: url('Inter-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('Inter-SemiBold.woff2') format('woff2');
}

/* Manrope Font Family */
@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('Manrope-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 450;
    font-display: swap;
    src: url('Manrope-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('Manrope-SemiBold.woff2') format('woff2');
}

