In the following MCE, the characters don't start at the same (left) vertical line (look at the horizontal rule of "T").
\documentclass{article}
\usepackage[showframe]{geometry}
\ifpdftex
\usepackage{lmodern}
\else
\usepackage{fontspec}
\setmainfont{Latin Modern Roman}
\addfontfeature{Kerning=Off}
\fi
\usepackage{pagegrid}
\begin{document}
\parindent=0pt\sffamily\Huge%
L
E
I
T
\end{document}
I wonder if it comes from some kerning of the font but, if so, the fontspec's Kerning=Off option doesn't have any effect.
- Do you know why the characters don't start at the same (left) vertical line and how to force that?
- Aside question: what is this tiny space between the left margin and the characters? In other words, why the text doesn't start at the very left of the text area?

