/* 系统字体本地化 - 无需下载外部字体文件 */
/* 使用系统原生字体，确保最佳性能和兼容性 */

/* 定义系统字体栈 */
:root {
    --font-family-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Microsoft YaHei', '微软雅黑', 'PingFang SC', 'Hiragino Sans GB', 'Source Han Sans SC', 'Noto Sans CJK SC', sans-serif;
    --font-family-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}

/* 应用系统字体 */
body, 
.container, 
.header, 
.controls, 
.btn, 
.modal-content, 
.form-control, 
.task-card, 
.day-label, 
.time-slot-header,
.table-title {
    font-family: var(--font-family-primary) !important;
}

/* 代码和等宽字体 */
code, 
pre, 
.monospace {
    font-family: var(--font-family-mono) !important;
}

/* 字体权重调整 */
.btn {
    font-weight: 600;
}

.table-title {
    font-weight: 700;
}

.task-title {
    font-weight: 500;
}

/* 确保字体渲染质量 */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
