/**
 * Poppins字体本地化CSS文件
 * @package KMDMS
 * @subpackage Assets
 * 
 * 包含Poppins字体的@font-face定义
 * 字体权重：400 (Regular), 500 (Medium), 700 (Bold), 800 (ExtraBold)
 */

/* Poppins Regular (400) */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('Poppins-Regular.woff2') format('woff2');
}

/* Poppins Medium (500) */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('Poppins-Medium.woff2') format('woff2');
}

/* Poppins Bold (700) */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('Poppins-Bold.woff2') format('woff2');
}

/* Poppins ExtraBold (800) */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('Poppins-ExtraBold.woff2') format('woff2');
}

