Using mathspec to select the Greek glyphs from an OpenType font, here is with DejaVu Serif Condensed:
vs 
(on the right I added the result of using mathastext without the basic option; in my opinion this is better: look at the = sign and at the (small) parentheses)
I did not experiment much more as I used the CharacterViewer on my Mac to try to identify candidate fonts, but the fonts from the TexLive 2013 repertory are not known to the system, so I only had the system fonts and a few I installed. Also note that for some reason I must specify the font filename when using xelatex with TexLive installed OpenType fonts.
\documentclass{article}
\usepackage{amsmath}
\usepackage[no-math]{fontspec}
\setmainfont[ExternalLocation]{lmmonoltcond10-regular}
% je ne peux pas faire ici sur TL2010:
% \setmainfont{Latin Modern Mono Light Cond}
% et ça ne marche pas non plus sur le Mac avec TL2013.
\usepackage{mathspec}
%\setmathsfont(Greek)[Lowercase=Regular,Scale=0.92]{FreeMono}
%\setmathsfont(Greek)[Lowercase=Regular,Scale=0.92]{Courier New}
%\setmathsfont(Greek)[Lowercase=Regular,Scale=0.76]{DejaVu Sans ExtraLight}
\setmathsfont(Greek)[Lowercase=Regular,Scale=0.76]{DejaVu Serif Condensed}
% previous tries
% \usepackage[style=French,scale=0.88]{libgreek}
% \usepackage[basic,eulergreek]{mathastext}
% \MTEulerScale{0.9}
\usepackage[basic]{mathastext}
%\MTgreekfont{cmr}\Mathastext
%\MTgreekfont{cmtt}\Mathastext
\begin{document}
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Ut purus elit,
vestibulum ut,
placerat ac, adipiscing vitae, felis. Curabitur dictum gravida mauris.
Nam arcu libero,
nonummy eget, consectetuer id, vulputate a, magna. Donec vehicula augue
eu neque.
\begin{gather*}
1+\frac{1}{4}+\frac{1}{9}+\cdots =\frac{\pi}{6}\\
\frac{\ln x}{\ln\alpha}=\log_{\alpha}x\\
f(x)=\frac{1}{\sigma\sqrt{2\pi}}\exp\left(-\frac{(x-\mu)^2}{2\sigma^2}\right)
\end{gather*}
\[ abcdefghijklmnopqrstuvwxyz \]
\[ αβγδεζηθικλμνξοπρςστυφχψω \]
\end{document}
\usepackage[basic,eulergreek]{mathastext} \MTEulerScale{0.9}but Greek letters appear a bit too bold. – Jun 24 '13 at 14:03\usepackage[style=French,scale=0.88]{libgreek}\usepackage[basic]{mathastext}but again the glyphs appear too bold. – Jun 24 '13 at 14:12