Fraunces is a display, "Old Style" soft-serif typeface inspired by the mannerisms of early 20th century typefaces such as Windsor, Souvenir, and the Cooper Series.
This typeface family is still under development, and will be coming soon to Google Fonts.
Fraunces has the following axes:
Axis | Tag | Range | Default | Description |
---|---|---|---|---|
Optical Size | opsz | 9pt to 144pt | 144pt | Labeled 9pt, 72pt, and 144pt in instances. |
Weight | wght | 100 to 900 | 900 | Labeled Thin, Light, Regular, Semibold, Bold, and Black in instances. |
Softness | SOFT | 000 to 100 | 100 | Labeled Sharp, Soft, and SuperSoft in instances. |
Wonky | WONK | 0 to 1 | 1 | Binary axis controls substitution of "wonky" characters. Automatically substitutes when opsz > 18. Not listed in instances. |
opsz
(Optical Size) AxisThe opsz
axis ties together changes in contrast, x-height, spacing, and character widths. As opsz
decreases, the x-height increases, spacing opens up, and the characters expand in width.
Additionally, mapping of axis values is placed in the AVAR table to create non-linear interpolation in the Variable font.
Many of the peculiar, wonky characteristics that are suitable for display usage are less desirable for more continuous reading. At certain smaller optical sizes (18px and less), the wonk
axis is disabled (see below).
wght
(Weight) AxisThe wght
axis spans Thin to Black. Nuff said.
SOFT
(Softness) AxisThe SOFT
axis gives access to the softer, rounded forms that are available towards the Optical Min, but still retaining other Optical Sizing considerations, such as change in character width, spacing, tall ascenders, and shorter x-height
WONK
(Wonky) AxisA binary axis that subsitutes wonk
characters for more normalized characters, such as the leaning n/m/h in Roman, or the bulbous flags in the b/d/h/k/l of the Italic. In OTF or TTF instances, this can be implemented as an OpenType Stylistic Set.
From terminal, run the build script at sources/build-all.sh
. Fonts output to fonts/
.
NOTE: The first time you build, you will need to set up a virtual environment and install dependencies:
Once you have set up the environment (see above), you can build fonts & prep releases!
When building a new version, add a version number (in the format of 1.001
) to update the UFO versions & version the fonts correctly. If you aren’t sure what version you should be building, check the number of the latest release in https://github.com/undercasetype/Fraunces/releases, then increment by .001
. If you leave out the version number, it will just build with the same version number that already exists in the UFO sources.
To build variable and static fonts, plus make woff2s, use build-all.sh
. This takes awhile (most of the time is taken up by building TTF & OTF static fonts).
sources/build-all.sh 1.000 # optional: place your desired version number as an argument
If you just want to build variable fonts, use build.sh
:
sources/build-scripts/build-vf.sh 1.000 # optional: place your desired version number as an argument
To build only the static fonts (these are secondary to the variable fonts, so you can’t set the version numbers in this script), use build-statics.sh
:
sources/build-scripts/build-statics.sh
If you are doing any work on this repo, please read the production notes here.
If you are looking for notes on making GitHub Release packages, see mastering/README.md.