Hey @vega, I believe your first example was the closest. You’ll want to use the @import statement, then include the actual font name in the font-family property. So something like this:
@import url('https://website.com/content/uploads/2012/10/Excellent-font.ttf');
#blog-title a {
font-family: 'Excellent font', sans-serif;
}
Note that any font family with a space in the name should have single quotes (') around it.