# Typography

### Options

The typography for the Grace UI Kits makes use of two font styles: [Montserrat ](https://fonts.google.com/specimen/Montserrat)and [Libre Baskerville](https://fonts.google.com/specimen/Libre+Baskerville). If you want to use one or the other, you must specify the class `.montserrat` or `.libre`. Both fonts are available for free from Google Fonts and need to be imported in the head section of your page.

Here is an example for the Libre headers:

![](https://1052164137-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LG0REpuu2Ew27TzR1Mm%2F-LG5wIb0tbZ4kEL0ssLl%2F-LG5y6gXDNVxVs3J0xb6%2FScreen%20Shot%202018-06-28%20at%2018.16.08.png?alt=media\&token=61bedf35-bc20-47a5-9969-f3ad4ac6bb0d)

```markup
<div class="libre">
    <h1>Headline 1</h1>
    <p class="sub-text">60px</p>
    <h2>Headline 2</h2>
    <p class="sub-text">46px</p>
    <h3>Headline 3</h3>
    <p class="sub-text">34px</p>
    <h4>Headline 4</h4>
    <p class="sub-text">30px</p>
    <h5>Headline 5</h5>
    <p class="sub-text">24px</p>
    <h6>Headline 6</h6>
    <p class="sub-text">18px</p>
</div>
```

### Colors

We have added 2 new classes for text colors `.text-pinkish-tan` and `.text-navy`.

![](https://1052164137-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LG0REpuu2Ew27TzR1Mm%2F-LG5wIb0tbZ4kEL0ssLl%2F-LG5yUU5NI4liGbf6TgK%2FScreen%20Shot%202018-06-28%20at%2018.18.50.png?alt=media\&token=198acba0-fca6-46fd-807e-f5ecb8e0d66b)

```markup
<p class="text-pinkish-tan">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
<p class="text-navy">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
```

If you want to see more examples and properties please check the official [Bootstrap Documentation](https://getbootstrap.com/docs/4.0/content/typography/)
