I use \usepackage[sfdefault,light,lining]{FiraSans} to reproduce the default font of the Beamer Metropolis theme. I followed this question for this.
However, the bold font looks too heavy. When I comment the \usepackage line, the font changes. The default font of Metropolis is different. I obtain these results with Overleaf and TeXstudio. It seems that I need to add another option to \usepackage or change the options there. How can I fix this?
MWE:
\documentclass[t,aspectratio=169]{beamer}
\usetheme{metropolis}
% Metropolis default font below? Bold font looks too heavy
\usepackage[sfdefault,light,lining]{FiraSans}
\setbeamertemplate{frame footer}{Information for the footer}
\begin{document}
\begin{frame}
\frametitle{Title of the slide, $\alpha$, $\gamma$}
\begin{itemize}
\item Item text
\item Item text
\end{itemize}
\end{frame}
\end{document}



FiraSans-Medium.otfto the directory of the main tex file, but it does not change the error messages. – Andre Feb 24 '23 at 19:43xelatex. Can you try usinglualatex? I didn't have a problem with that. – Zxcvasdf Feb 27 '23 at 03:45lualatex. Thank you. The font, however, is bold-regular:BoldFont = FiraSans-Regular.otf(not medium). – Andre Feb 27 '23 at 04:31\usepackage[sfdefault,light,lining]{FiraSans}to have the section titles behave in the expected way, it will be appreciated – Andre Feb 27 '23 at 04:36mediumgets closer, but the default font for bold is regular. But it is close enough. Thanks! – Andre Feb 27 '23 at 16:19