基本上是因为216th使用了两种不同的字体Merriweather 作为一般网站字体和正文文本,以及Montserrat 对于特定部分,如徽标、标题等。。。
Merriweather用于后备常规和正文文本:
 /**
 * 3.0 - Typography
 */
 body,
 button,
 input,
 select,
 textarea {
     color: #1a1a1a;
     font-family: Merriweather, Georgia, serif;
     font-size: 16px;
     font-size: 1rem;
     line-height: 1.75;
 }
 蒙特塞拉特特定零件:
.widget .widget-title {
    font-family: Montserrat, "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: 0.046875em;
    line-height: 1.3125;
    margin: 0 0 1.75em;
    text-transform: uppercase;
}
 基本上,您需要在每个要更改字体的特定标记上覆盖字体族规则。