I assume a lot of people use these fonts on websites (by the fact that a default CSS is provided).
Most modern browsers support the woff2 format (https://caniuse.com/woff2) and it can compress the files by a lot (e.g. 27kb instead of 77kb for Bookinsanity.otf) losslessly, making websites load faster.
This could be done with something like
for file in **/*.otf
do
woff2_compress $file
done
after installing e.g. woff2 on Debian (see https://github.com/google/woff2).
If you would like, I could create a Pull Request
I assume a lot of people use these fonts on websites (by the fact that a default CSS is provided).
Most modern browsers support the woff2 format (https://caniuse.com/woff2) and it can compress the files by a lot (e.g. 27kb instead of 77kb for Bookinsanity.otf) losslessly, making websites load faster.
This could be done with something like
after installing e.g.
woff2on Debian (see https://github.com/google/woff2).If you would like, I could create a Pull Request