Typography
CSS file name:
styles/global.scss
Header One
font-family: 'Montserrat';
font-style: normal;
font-weight: bold;
font-size: 3rem;
<h1>The quick brown fox jumps over the lazy dog.</h1>
The quick brown fox jumps over the lazy dog.
Header Two
font-family: 'Lato';
font-style: normal;
font-weight: bold;
font-size: 1.5rem;
<h2>The quick brown fox jumps over the lazy dog.</h2>
The quick brown fox jumps over the lazy dog.
Normal text
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 400;
font-size: 1rem;
<p>The quick brown fox jumps over the lazy dog.</p>
The quick brown fox jumps over the lazy dog.
Normal text bold
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: bold;
font-size: 1rem;
<p class="bold">The quick brown fox jumps over the lazy dog.</p>
The quick brown fox jumps over the lazy dog.
Link
<a class="underline">The quick brown fox jumps over the lazy dog.</a>