Making custom fonts: how and why

Published: Updated: Words: 1144 Read time: 6 minutes

A while ago I was asking for feedback on my countdown timer application. I want to make the best countdown timer for design workshops. Its biggest feature is that it’s, well, big.

I put a lot of effort in making sure the numbers are as big as possible on any screen. As a result, even on a medium-sized display every detail of a font will become visible. And of course that caught the eyes of some designers using it. They complained about ‘ink traps or something’.

Screenshot of the application with glyphs showing ink traps

When making this screenshot I realized that only the 7 and 2 clearly show an ink trap. Spoiler: I created custom versions for all numbers anyway.

There were dozens of features I found more important than those tiny details, so I ignored the ink traps until it started to bug me that when in use, the UI blends out and all users see are those huge numbers. With useless ink traps. For years I’ve been thinking of making my own typeface, so I thought it would be a nice exercise to figure out how feasible that would be. After all, I only need the numbers 0–9 and a colon!

Why create custom fonts?

Besides icon fonts and ridiculously big countdown timers, there are three use cases for custom fonts I think are important.

1. Complementing existing fonts

More than once I ran into the issue of finding a font missing glyphs I really needed. Like when you just got the perfect font for a retail website but there is no , or ฿ in it. You can just make one yourself with by slicing up R, C and B and combining them with dashes.

2. Improving performance with subsets

Notice how compared to web pages, some print magazines show many more typefaces? We’re used to using few typefaces online, because loading more fonts makes the page slow. So every time a designers asks a developer to add more fonts, they get pushback. But does it have to be that way? Let’s say you’d like put the word Autumn in some special font on your homepage for the end-of-season sale. Like this:

Autumn

Loading that whole typeface could make the page noticeably slower, but loading only those 5 glyphs doesn’t make a big difference. So subsetting fonts gives us more typographic options! The Google Fonts API supports that: you can load a subset of a Google Font with just the glyphs you need by appending &text=theglyphsyouneed to your query. No need to even create custom fonts yourself! In fact, the example above is not image, but done just that way.

3. Accessible logos

Logos, or to be precise, wordmarks don’t need to be images. I’ve heard IBM has a font with the striped I, B and M (I wonder if it has more glyphs!). I can see how it could be useful or nice to have a word mark as an accessible phrase on a website rather than as an image.

Of course you can always use images of glyphs instead of creating custom fonts, but fonts have benefits:

  • With real text, the application is accessible to screen readers, browser’s reader modes, search engines and whatnot.
  • It’s easier for developers and the applications they build to combine a string of glyphs from a custom font than to align images.

Tools

Turns out, it’s easy to make custom font files! Big Timer is an unpaid side project, so I didn’t want to spend a lot of money for the best software (probably $ 459 for FontLab). Instead, I looked at two free alternatives: Birdfont and FontForge. I ended up using Birdfont, because it seemed to be easier to install and setup. With many common options tucked away in a single hamburger menu, I don’t find it has a good UI. The tools confused me, with tooltips inconsistently showing. So next time I’ll try FontForge, which looks ugly, but it’s open source, which makes it more attractive to create an open source font.

Process

Despite its UI, Birdfont got the job done anyway! And it didn’t take me long: about 2–3 hours, including figuring out everything in this post. My process:

  1. Outline glyphs from existing fonts in Illustrator
  2. Optimize the glyphs for my application
  3. Copy and paste the vector shapes to the font editor, Birdfont
  4. Export to font files
  5. Convert the TTF file to WOFF and WOFF2 with some online converter

I could have edited the glyphs in the font editor directly, but I found Illustrator’s bezier tools much easier to use. This did require some repetitive copy and pasting every time I made changes to some glyphs, but importing multiple SVG files to Birdfont was more annoying.

I forgot what online converter I used for step 5. It doesn’t really matter, it was one of the first in the search results. What is relevant, is that for web projects it’s really worth creating WOFF2 files, as these are only a quarter to one third the size of the TTF files.

Screenshot of the new Big Timer

Here’s a screenshot of the (yet unreleased) new Big Timer with the custom number font. I made custom versions for all numbers to make them more geometric. I was going for a bolder and more precise look.

What I’d do different next time

There are a few issues with the first font I created this way. To begin with, the glyphs appeared higher than those of other fonts, as if I had put them above the baseline. I probably had, but then I don’t know what that guideline was for that Birdfont showed. Next time I’ll test how a new font compares with existing fonts, so I get baseline and sizes right.

Some curved glyphs aren’t as smooth as they should be. In Birdfont they do look smooth, so I assume it has to do with the way they were converted to a font file. I read something about cubic beziers and some formats not supporting that, but really I don’t know enough about this, so I blame Birdfont for at least not warning me when exporting the font. So again, next time I’ll try FontForge.

For any new font project I would test the whole process and tool chain with a single glyph. That way, when issues occur, I can avoid importing glyphs from Illustrator to the font editor over and over again.

Conclusion

Custom fonts allow designers to use more fonts and glyphs than otherwise feasible. More creative freedom! Making my first 11 glyph customized font was not difficult. With some more practice and a better font editor, I think font files can become a new standard deliverable next to SVGs, PNGs, JPGs for me. If you decide to make your own custom fonts, let me know how it goes, alright?

Every now and then I post on this blog, mostly about design and the web. Get the latest posts via RSS, Mastodon, LinkedIn, Bluesky or X. For premium treatment, sign up to my design newsletter:

By subscribing, you agree with Buttondown’s Terms and privacy policy.

What do you think about the above?

Loading comments …

} />