To get the font family, I recommend downloading them and then using a tool like webfonttools.com to ensure they are compatible with all browsers. Be sure to check the boxes for:
After downloading, you will receive all the fonts along with a @font-face
stylesheet that automatically manages the font face declarations. All you need to do is adjust your file paths accordingly.
@font-face {
font-family: 'Goodtype';
src: url('../../assets/fonts/Goodtype-Regular.eot');
src: url('../../assets/fonts/Goodtype-Regular.eot?#iefix')
format('embedded-opentype'),
url('../../assets/fonts/Goodtype-Regular.woff2') format('woff2'),
url('../../assets/fonts/Goodtype-Regular.woff') format('woff'),
url('../../assets/fonts/Goodtype-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
font-display: swap;
}
font-family: "Goodtype", sans-serif; // make sure to include fallback system fonts