Include custom font in lightning components
Uploading a .ttf file to my static resources and including it as follows worked for me:
.THIS .boldFont {
font-family: GothamBold;
}
@font-face {
font-family: GothamBold;
src: url(/resource/B2B_Partners_GothamBold);
}