如何使 header 文本的一部分使用不同的字体并在整个 header 文本周围添加破折号?

How to make one part of header text different font and add dashes around whole header text?

我正在尝试创建这样的东西:

要开始该设计,我想先创建一部分 header 文本粗体(使用不同的字体),我该如何完成?

目前这产生了我的 header 标题:

 <h2 class="h1  section-header--left" style="font-family: Geogrotesque Regular; color: #071435; font-size: 22px">MEEST POPULAIR</h2>

为了使文本变粗,我使用字体 "Geogrotesque SemiBold",有谁知道我如何在 html 行中添加这个 css 并创建我想要的设计?所以文本 "Meest" 应该是字体 "Geogrotesque Regular" 而文本 "Populair" 应该是字体 "Geogrotesque SemiBold".

如果你知道 css 在 header 周围创建破折号就好了。

尼尔斯

这是使用其他字体的简单示例:

h2 {
font: 33px sans-serif;
margin-top: 30px;
text-align: center;
text-transform: uppercase;
}

h2.background {
position: relative;
z-index: 1;
}

 h2.background:before{
    border-top: 2px solid #dfdfdf;
    content:"";
    margin: 0 auto; /* this centers the line to the full width specified */
    position: absolute; /* positioning must be absolute here, and relative positioning must be applied to the parent */
    top: 50%; left: 0; right: 0; bottom: 0;
    width: 95%;
    z-index: -1;
}


span { 
    /* to hide the lines from behind the text, you have to set the background color the same as the container */ 
    background: #fff;
    padding: 0 15px;
    font-family:arial;
}


h2.double:before { 
/* this is just to undo the :before styling from above */
border-top: none; 
}

h2.double:after {
border-bottom: 1px solid blue;
-webkit-box-shadow: 0 1px 0 0 red;
-moz-box-shadow: 0 1px 0 0 red;
box-shadow: 0 1px 0 0 red;
content: "";
margin: 0 auto; /* this centers the line to the full width specified */
position: absolute;
top: 45%; left: 0; right: 0;
width: 95%;
z-index: -1;
}
<h2 class="background double"><span style='font-family: Geogrotesque Regular!important;' >FIRST</span><span style='font-family: cursive!important;'>TWO</span></h2>