/* Inter Font - Local Fallback with System Fonts */
/* 由于Inter字体文件较大，这里使用系统字体作为后备方案 */
/* 优先使用系统自带的现代无衬线字体 */

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

@font-face {
    font-family: 'Inter Local';
    src: local('Inter Medium');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter Local';
    src: local('Inter SemiBold');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter Local';
    src: local('Inter Bold');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter Local';
    src: local('Inter ExtraBold');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
