Problem/Motivation

Perhaps I'm missing something, but the Font Squirrel fonts don't seem to work well for this theme.

The downloads from http://www.fontsquirrel.com/fonts/League-Gothic and from https://www.theleagueofmoveabletype.com/league-gothic do not contain "League_Gothic-webfont.eot" like font names. In fact, the fontsquirrel download only contains .otf fonts which aren't used in the styles.css at all.

Proposed resolution

This fix does not work with the current git HEAD. It only works with 7.x-1.2. The style.css files are very different beasts between HEAD and 7.x-1.2.

I noted that the http://files.theleagueofmoveabletype.com/downloads/theleagueof-league-go... download contains a webfonts directory that contains eot, woff, ttf, and svg font types. I copied the webfonts directory contents to the vert/fonts folder and changed any font name that started with "League_Gothic-webfont" to "leaguegothic-regular-webfont" in styles.css. This fixed the issue for me.

If someone has already installed the theme with fonts named the old way, should both names be used in the styles.css to handle the change if a new styles.css is patched? Its not pretty but it would work if someone updates to the latest version but is using the older font names.

Here is the only section that I needed to change.

/* Generated by Font Squirrel (http://www.fontsquirrel.com) on March 12, 2012 10:39:13 AM America/New_York */
@font-face {
    font-family: 'LeagueGothicRegular';
    src: url('fonts/leaguegothic-regular-webfont.eot');
    src: url('fonts/leaguegothic-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/leaguegothic-regular-webfont.woff') format('woff'),
         url('fonts/leaguegothic-regular-webfont.ttf') format('truetype'),
         url('fonts/leaguegothic-regular-webfont.svg#LeagueGothicRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}

Remaining tasks

I will happily create a patch for styles.css.

Update documentation with specific instructions to use the https://www.theleagueofmoveabletype.com/league-gothic download.

User interface changes

none

API changes

none