I've been trying to change the font-family from Google Fonts in my Bootstrap 5 project, but it's not working as expected. Here's a snippet of my code:
HTML
<div class="row">
<div class="col-lg-6 col-md-12">
<h1 id="entryHeading">Meet new and interesting dogs nearby.</h1>
<button type="button">Download</button>
<button type="button">Download</button>
</div>
<div class="col-lg-6 col-md-12">
<img src="images/iphone6.png" alt="iphone-mockup">
</div>
</div>
CSS
#entryHeading{
font-family: "Montserrat-Black" sans-serif;
font-size: 3rem;
line-height: 1.5;
}
The font is changing to Montserrat, but I actually want Montserrat-Black. Any suggestions on how to fix this?