For Iosevka, use the unhinted SS03 “fixed” version, as that doesn’t include ligatures by default and is much smaller overall (e.g., <https://github.com/be5invis/Iosevka/releases/download/v17.1.0/ttf-u...
For reference, the following works, assuming that TTF files have been downloaded to `../buildSrc/build/resources/main/fonts/` (relative to the lecture in question):
```latex
\setsansfont{OpenSans}...
I toyed with the idea of automatic deployment, e.g.:
* making the `buildSrc` directory a Git submodule
* setting up Gradle tasks to automatically clone/pull
These all sound like too much hassle...
Ugh, Gradle plugins are a complete nightmare. Binary plugins need to be published to a (Maven) repository. The source dependencies mentioned above are a potential solution but have been “experimental”...
Aha, it’s possible to add source dependencies via Git URLs:
* <https://blog.gradle.org/introducing-source-dependencies>
* <https://docs.gradle.org/current/javadoc/org/gradle/vcs/SourceControl.html...