/* 使用 @font-face 引入自定义字体 */
@font-face {
    font-family: 'CustomFont'; /* 定义字体名称 */
    src: url('RobotoSlab-Regular.woff2') format('woff2'), /* 引用 .woff2 文件 */
    font-weight: normal;
    font-style: normal;
}

/* 设置默认字体 */
body {
    font-family: 'CustomFont', sans-serif;
}

/* 示例样式 */
h1 {
    font-weight: bold;
    color: #333;
}

p {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
}
