/*
 * @Project      家具展示网站与小程序接口预留项目
 * @File         fonts.css
 * @Description  本地 MiSans 字体引入（Light / Regular / Semibold）。
 *               字体文件存放于 assets/fonts/ 目录，以 woff2 格式提供。
 *               加载失败时自动回退到系统无衬线字体。
 * @Author       易商企
 * @Date         2026
 */

/* MiSans Light — 用于次要文字 / 大号展示字重较轻的场景 */
@font-face {
    font-family: 'MiSans';
    src: url('../assets/fonts/MiSans-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* MiSans Regular — 正文默认字重 */
@font-face {
    font-family: 'MiSans';
    src: url('../assets/fonts/MiSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* MiSans Semibold — 标题 / 强调文字 */
@font-face {
    font-family: 'MiSans';
    src: url('../assets/fonts/MiSans-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}