Font - @font-face

Typically used for fonts that are served from your web server.

@font-face {
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital@1&display=swap');
}

h1,h2,h3,h4,h5,h6 {
font-family:Montserrat, sans-serif;
}

h1 {
font-size:5em;
}

h2 {
font-size:3em;
}

body {
font-family:Georgia, serif;
}