Hi there, I’m glad you were able to figure it out!
It looks like you’ve added some font files in a folder called fonts within your theme folder, and then added some Google font-face import statements directly to your style.css file:
/* =Custom Fonts
----------------------------------------------- */
@font-face {
font-family: 'veneerregular';
src: url('fonts/veneer-webfont.eot');
src: url('fonts/veneer-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/veneer-webfont.woff') format('woff'),
url('fonts/veneer-webfont.ttf') format('truetype'),
url('fonts/veneer-webfont.svg#veneerregular') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'travelingtypewriterregular';
src: url('fonts/travelingtypewriter-webfont.eot');
src: url('fonts/travelingtypewriter-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/travelingtypewriter-webfont.woff') format('woff'),
url('fonts/travelingtypewriter-webfont.tff') format('truetype'),
url('fonts/travelingtypewriter-webfont.svg#travelingtypewriterregular') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'alicoscriptsskregular';
src: url('fonts/alicoscriptssk-regular-webfont.eot');
src: url('fonts/alicoscriptssk-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/alicoscriptssk-regular-webfont.woff') format('woff'),
url('fonts/alicoscriptssk-regular-webfont.ttf') format('truetype'),
url('fonts/alicoscriptssk-regular-webfont.svg#alicoscriptsskregular') format('svg');
font-weight: normal;
font-style: normal;
}
This means that the next time a new version of Misty Lake is released and you update it on your site, all your your changes will be overwritten unless you restore them from a backup.
If you don’t want to have to be concerned about this – which most folks don’t – I’d recommend you create a child theme, and add your font folder and new CSS styles there.
Making a child theme means your changes won’t be overwritten when you update the theme. If you’re new to child themes, you can explore these guides:
https://codex.www.ads-software.com/Child_Themes
https://op111.net/53/
https://vimeo.com/49770088
I really like your header graphic and background image. You might want to consider centering the background graphic of the wood planks so it looks a bit more balanced on larger screens.
Here’s what it looks like on my viewport at 1707px by 920px, for example: https://cloudup.com/cNTgzP1HvjU
There’s actually button to center the background graphic, under Appearance > Background:

I also noticed your site has directory indexing on – you may want to turn that off for security reasons, otherwise anyone can see files in directories where there is no index file, like your fonts directory. Your host can usually provide documentation on how to do this.
Good luck and happy theming!